home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue24 / menus / ODMENUU.DFM / ODMENUU.txt
Encoding:
Text File  |  1997-05-28  |  1.3 KB  |  61 lines

  1. object Form1: TForm1
  2.   Left = 186
  3.   Top = 186
  4.   Width = 295
  5.   Height = 154
  6.   Caption = 'Form1'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   Menu = MainMenu1
  12.   PixelsPerInch = 96
  13.   Position = poDefaultPosOnly
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   TextHeight = 13
  17.   object Button1: TButton
  18.     Left = 96
  19.     Top = 32
  20.     Width = 105
  21.     Height = 33
  22.     Caption = 'Change &Bitmap'
  23.     TabOrder = 0
  24.     OnClick = Button1Click
  25.   end
  26.   object MainMenu1: TMainMenu
  27.     Left = 8
  28.     object Menu1: TMenuItem
  29.       Caption = '&Customised Menus'
  30.       object MenuItem1: TMenuItem
  31.         Caption = '1'
  32.         OnClick = MenuItem2Click
  33.       end
  34.       object MenuItem2: TMenuItem
  35.         Caption = '2'
  36.         OnClick = MenuItem3Click
  37.       end
  38.     end
  39.     object HelpItem1: TMenuItem
  40.       Caption = '&Help'
  41.       object Contents1: TMenuItem
  42.         Caption = '&Contents'
  43.       end
  44.       object SearchforHelpOn1: TMenuItem
  45.         Caption = '&Search for Help On...'
  46.       end
  47.       object HowtoUseHelp1: TMenuItem
  48.         Caption = '&How to Use Help'
  49.       end
  50.       object About1: TMenuItem
  51.         Caption = '&About...'
  52.       end
  53.     end
  54.   end
  55.   object BmpDlg: TOpenDialog
  56.     Filter = 'Bitmaps (*.bmp)|*.bmp|All files (*.*)|*.*'
  57.     InitialDir = 'c:\delphi\images\splash\16color'
  58.     Left = 48
  59.   end
  60. end
  61.